Fox's Git Mirrors
tests/Makefile 2f4d090a57d84e706b03e659828923e070c00661 (2f4d090a) Text, 519 B
CXXFLAGS = -I.. -std=c++17 -W -Wall -O2 -fno-exceptions -fno-rtti -ffast-math -ftree-vectorize
CXX = clang++ -stdlib=libc++ -march=native
#CXX = g++ -march=native
#CXX = armv7a-hardfloat-linux-gnueabi-g++ -static -mfpu=neon -march=armv7-a
#QEMU = qemu-arm
#CXX = aarch64-unknown-linux-gnu-g++ -static -march=armv8-a+crc+simd -mtune=cortex-a72
#QEMU = qemu-aarch64
.PHONY: clean test
tests := $(basename $(wildcard *_test.*))
test: $(tests)
$(patsubst %,$(QEMU) ./% >/dev/null;,$(tests))
clean:
rm -f *_test
Served by rngit 1.5.2 - Generated in 0.03s